home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / shell / tsbgex / src / win / window.h < prev   
Encoding:
C/C++ Source or Header  |  1994-11-16  |  427 b   |  20 lines

  1. struct window {
  2.     struct window *next, *prev;
  3.     int mapped;
  4.     int x, y, w, h, x2, y2, size;
  5.     unsigned char *save;
  6.     void (*draw)();
  7.     void (*notify)();
  8.     int notifyMask;
  9.     void *owner;
  10.     int aplid;
  11. };
  12.  
  13. #define HIDE_NOTIFY        0x00000001
  14. #define EXPOSE_NOTIFY    0x00000002
  15.  
  16. #define SERVER "WIN00003.EXG"
  17. #define SERVER_TITLE "WIN00003"
  18. #define MAGIC    0x57494e30
  19. #define OWNER  "Townsシェル"
  20.